home *** CD-ROM | disk | FTP | other *** search
- function writeButton(urld, url, name, w, h, alt, target, hsp)
- {
- gname = name;
- while(typeof(document[name])!="undefined") name += "x";
- reg(gname, name);
- tr(true);
- document.write("<td>");
- if (alt != "") alt = " alt=\"" + alt + "\"";
- if (target != "") target = " target=\"" + target + "\"";
- if (w > 0) w = " width="+w; else w = "";
- if (h > 0) h = " height="+h; else h = "";
- if (url != "") url = " href=\"" + urld + url + "\"";
-
- document.write("<a " + url + evs(name) + target + ">");
-
- if (hsp == -1) hsp =" align=right";
- else if (hsp > 0) hsp = " hspace="+hsp;
- else hsp = "";
-
- document.write("<img src=\""+loc+name+gtype+"\" name=\"" + name + "\"" + w + h + alt + hsp + " border=0></a></td>");
- tr(false);
- }
-